home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1996 #1 / Amiga Plus CD - 1996 - No. 1.iso / pd / netz / xbtx_v1.1 / ioserial.hpp < prev    next >
C/C++ Source or Header  |  1995-08-19  |  3KB  |  100 lines

  1. /*
  2. **    $Id: IOSerial.hpp 1.2 1995/08/19 22:34:29 olsen Exp olsen $
  3. **
  4. **    :ts=4
  5. */
  6.  
  7. /*
  8.  * Copyright © 1995 by Olaf Barthel, All Rights Reserved
  9.  *
  10.  * Redistribution and use in source and binary forms, with or without
  11.  * modification, are permitted provided that the following conditions
  12.  * are met:
  13.  * 1. Redistributions of source code must retain the above copyright
  14.  *    notice, this list of conditions and the following disclaimer.
  15.  * 2. Redistributions in binary form must reproduce the above copyright
  16.  *    notice, this list of conditions and the following disclaimer in the
  17.  *    documentation and/or other materials provided with the distribution.
  18.  *
  19.  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
  20.  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  21.  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO
  22.  * EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  23.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  24.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
  25.  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  26.  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  27.  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  28.  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  29.  *
  30.  * This software has not been validated by the ``Bundesamt fuer Zulassungen in
  31.  * der Telekommunikation'' of the ``Deutsche Bundepost Telekom'' and thus
  32.  * must not be used for accessing the BTX-Network of the Telekom in Germany.
  33.  *
  34.  * Diese Software hat keine Zulassung durch das Bundesamt fuer Zulassungen in
  35.  * der Telekommunikation der Deutschen Bundespost Telekom und darf daher nicht
  36.  * am Netz der Deutschen Bundespost Telekom in Deutschland betrieben werden.
  37.  */
  38.  
  39. #ifndef _IOSERIAL_HPP
  40. #define _IOSERIAL_HPP 1
  41.  
  42. #include "IOChannel.hpp"
  43. #include "IORawSerial.hpp"
  44.  
  45. #include <stdarg.h>
  46. #include <stdio.h>
  47.  
  48. #define BLOCK_BUFFER_SIZE 3000
  49.  
  50. class IOSerial : public IOChannel
  51. {
  52.     public:
  53.  
  54.         IOSerial();
  55.         ~IOSerial();
  56.  
  57.         LONG Open(CONST STRPTR Channel,ULONG Unit=0,ULONG Baud=0,BOOL RTS_CTS=-1);
  58.         VOID Close(VOID);
  59.  
  60.         LONG GetChar(LONG Timeout=0);
  61.         VOID PutChar(UBYTE Char) { PutString((CONST STRPTR)&Char,1); }
  62.         VOID PutString(CONST STRPTR String,LONG Len=-1);
  63.  
  64.         LONG GetCharDirect(LONG Timeout=0) { return(Raw -> GetChar(Timeout)); };
  65.         VOID PutCharDirect(UBYTE Char) { Raw -> PutChar(Char); };
  66.         VOID PutStringDirect(CONST STRPTR String,LONG Len=-1) { Raw -> PutString(String,Len); };
  67.  
  68.         VOID Flush(VOID) { Raw -> Flush(); };
  69.  
  70.         LONG Waiting(VOID);
  71.  
  72.         ULONG WaitMask(VOID);
  73.  
  74.     private:
  75.  
  76.         int modeminput(LONG Timeout);
  77.         inline void send_TFI();
  78.         inline UWORD getcheck(LONG Timeout);
  79.         inline void calccrc(unsigned int c);
  80. //        void log(char *fmt,...) { va_list args; va_start(args,fmt); vprintf(fmt,args); va_end(args); };
  81.         void log() {};
  82.         LONG getmodem(LONG Timeout);
  83.         int putmodem(int c) { PutCharDirect((UBYTE)c); return 0; };
  84.  
  85.         IORawSerial *Raw;
  86.  
  87.         unsigned int    block, bufferlen;
  88.         unsigned int    tfi;
  89.         UBYTE            ack01,status;
  90.         UBYTE            buffer[BLOCK_BUFFER_SIZE];
  91.         UBYTE            c;
  92.         UBYTE            lastchar;
  93.         UWORD            crc;
  94.  
  95.         LONG            buffered;
  96.         LONG            bufferindex;
  97. };
  98.  
  99. #endif    // _IOSERIAL_HPP
  100.